home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / games / 65 / pascal / access.txt next >
Text File  |  1986-10-16  |  1KB  |  36 lines

  1.                    Creating Desk Accessories
  2.           in Personal Pascal Versions 1.11 and Higher
  3.  
  4. In  Personal  Pascal  versions  1.11 and higher  there  is  a  new 
  5. compiler directive: {$A+}.
  6.  
  7. Using  this  directive  tells  the compiler  to  generate  a  desk 
  8. accessory rather than a stand-alone application.
  9.  
  10. You need to specify the stack size, and turn debug off in order to 
  11. successfully use this directive.  We recommend a stack size of 10K 
  12. for most accessories.
  13.  
  14. The most common usage is:
  15.  
  16. {$A+,D-,S10}
  17.  
  18. this  will tell the compiler to generate a  desk  accessory,  turn 
  19. debug mode off, and set the stack size to 10K.
  20.  
  21. With  these  directives available you no longer need  to  run  the 
  22. program  "PASACC"  to generate desk accessories.   You  need  only 
  23. compile for GEM,  then rename the resulting .PRG program to  .ACC.
  24.  
  25. If  you  do  not have version 1.11 or later,  and  would  like  to 
  26. upgrade  to  the  latest  version in order to  make  use  of  desk 
  27. accessories,  send your MASTER copy of Personal Pascal and a check 
  28. for  $10.00 to OSS.   Be sure to include your registration  number 
  29. and full address.  We will be revising Personal Pascal in the near 
  30. future so if you do not need the features described above, hold on 
  31. to your $10 'till then.
  32.  
  33. NOTICE:  Price for upgrades subject to change without notice!
  34.  
  35. -- OSS Customer Support
  36.